|
Install Ruby
2015/01/17 |
|
Configure httpd to use Ruby as CGI Scripts.
|
|
| [1] | Install Ruby. |
|
[root@www ~]#
yum -y install ruby
[root@www ~]#
vi /etc/httpd/conf/httpd.conf # line 778: add extension for ruby script AddHandler cgi-script .cgi .pl .rb
/etc/rc.d/init.d/httpd restart Stopping httpd: [ OK ] Starting httpd: [ OK ] |
| [2] | Create a Ruby test page and access to it with a web browser on Client to make sure it works normally. |
|
[root@www ~]#
vi /var/www/html/index.rb
#!/usr/bin/ruby
print "Content-type: text/html\n\n"
print "<html>\n<body>\n"
print "<div style=\"width: 100%; font-size: 40px; font-weight: bold; text-align: center;\">\n"
print Time.now.strftime('%Y/%m/%d')
print "\n</div>\n"
print "</body>\n</html>\n"
chmod 705 /var/www/html/index.rb |
|